{% extends "base.html" %} {% block title %}Отчет по попытке{% endblock %} {% block content %}
Пользователь: {{ user.full_name if user.full_name else user.username }}
Тест: {{ test.title }}
Дата начала: {{ attempt.started_at.strftime('%d.%m.%Y %H:%M') }}
{% if attempt.completed_at %}
Завершено: {{ attempt.completed_at.strftime('%d.%m.%Y %H:%M') }}
{% endif %}
{% if attempt.score %}
Оценка: {{ attempt.score }}
{% endif %}
{{ item.question.question_text }}